Automation Anywhere StartProcess
Overview
This operation lets you create a new case of a process in the Work Portal with the authenticated user as the creator of the case. You may write some data in your Bizagi model by sending a start parameter JSON. For more information on this JSON go to Relevant processes startup data.
Input
- token: Token used to authenticate the user.
- process-id: GUID of the process you want to start.
- start-parameters: A JSON with a specific structure that lets you write data needed for your process.
- base-address: URL of your Work Portal.
Output
-
case-id: ID of the newly generated case.
Important considerations
- Generally before using this operation you must get the authorization token using the Authenticate operation.
- The authenticated user must be able to create instances of the desired process.
- You can use the operation GetProcess to obtain the GUID of the process.
- You can send a null variable as a start parameter or the string
{"startParameters": []}
if no start parameters are needed. - You can only modify attributes that appear in your Start Form through the start parameters JSON.
- To build your start parameter JSON you can use the following methods:
- AddStartParameter
- AppendRowToCollectionParameter
- AddColumnToLastRowParameter
- AppendFileToParameter
- You can save the ID of the case in a variable if you want to further work on the case using your Bot.